Written by Dare O. on 2023-07-09
Azure's version of container orchestration is Azure Kubernetes service, aka AKS. AKS is a fully managed Kubernetes service for deploying, managing, and scaling containerized applications.
This blog detail the steps to build docker images, provision an AKS cluster, push docker images to the docker hub, and deploy containerized applications to the provisioned cluster.
To deploy the sample application built for this blog, you will need the tools and accounts listed below.
Azure subscription. Create a free account.
Kubectl. Installation guide.
Docker Installation guide.
A Docker hub account. Create a free account.
An Azure DevOps account. Create a free account
Terraform Installation guide.
Favourite IDE. e.g. VS Code
The sample application used in this blog is a simple Python Flask server with a front-end and back-end service. The front-end service receives HTTP requests and then proxies requests to the back-end service, which then fetches random users from randomuser.me.
Sample file structure.
.
├── AKS-gateway-ingress.yaml
├── Azure-AKS
│ ├── main.tf
│ ├── output.tf
│ └── variables.tf
├── Azure-kubernete-iaac-pipeline.yml
├── Backend
│ ├── app.py
│ ├── deployment.yaml
│ ├── dockerfile
│ └── requirements.txt
├── backend-ci-cd-pipeline.yml
├── docker-compose.yaml
├── frontend
│ ├── app.py
│ ├── deployment.yaml
│ ├── dockerfile
│ ├── __pycache__
│ │ └── app.cpython-310.pyc
│ └── requirements.txt
├── frontend-ci-cd-pipeline.yml
└── ingress.yaml
The sample application has a docker-compose file you can run to test the application locally. Follow the steps below to test on your local machine.
git clone https://github.com/fodare/Azure-k8s-flask-app.git
cd cd Azure-k8s-flask-app/
sudo docker compose up -d
docker container ps -a
CONTAINER ID IMAGE COMMAND PORTS NAMES
329911d5009c foloo12/frontend:0.0.7 "python ./frontend/a…" 0.0.0.0:3000->5000/tcp, :::3000->5000/tcp frontendservice
6172e925710f foloo12/backend:0.0.7 "python ./backend/ap…" 0.0.0.0:3001->5001/tcp, :::3001->5001/tcp backendservice
The front-end service is exposed on port 3000 on your local machine, you can from your local browser search http://localhost:3000/frontendservice/user. Request is proxied to the back-end service then to randomuser.me.
Front-end service verbs are:
Running applications on an AKS cluster requires we create the cluster in the first place. There are multiple ways to provision an AKS cluster, but one of my favourite ways is to use a CI-CD pipeline that executes terraform commands. Check out some tips from this Microsoft blog here.
For the sample application, there is a dir
named Azure-AKS
(AKS config file). The main.tf
file contains simple terraform definitions to create a resource group and create the cluster. Notice the backend "azurerm""
definition is commented, this is because we would be using a pipeline variable to pass these values to create an Azure storage account to help store terraform state remotely.
Let's create a CI-CD pipeline to help automate the creation of an AKS cluster.
From Azure DevOps, create a new project.
Create a service principal account.
// From your CLI
az login
az ad sp create-for-rbac --role="Contributor" --scopes="/subscriptions/<>"
// Store the result safely
// From your cli
ssh-keygen -m PEM -t rsa -b 4096
// Do not store the pub file in your project dir.
From Azure DevOps, Project settings
,Service connections
, create a new service connection for Azure Resource Manager
, Service principal (automatic)
Import the public pub file created earlier to pipeline secure files
Pipeline
- Library
- Secure files
. Drag and drop or import the .pub
file.Create a new Pipeline.
From the pipeline menu Click the New pipeline
, select the location of the source code and use the Starter pipeline
. Example Github yaml
, you can also use the sample code from here. Comment out the destroy
task as it deletes the cluster once executed. Uncomment the vmImage
if you are using Azure's agent.
Save and run the new pipeline. The pipeline will execute the main.tf
file, and once the job is completed, you can navigate to the Azure portal to find the new AKS cluster within your resource group.
Connect to the cluster
az aks get-credentials --name <<cluster-name>> --resource-group <<resourceGroup-name>>
kubectl get nodes
To run services/applications within a Kubernetes cluster, you can create a deployment file, an example is the deployment.yaml
in the frontend service and backend service. Using kubectl to apply changes to the cluster will help you deploy the containerized application to the AKs cluster.
Another form of deployment is to create a CI CD pipeline that automates the process of running tests, building docker images, pushing images to the docker hub or another container registry, connecting to the AKS cluster, and executing the deployment files.
Azure DevOps is a service that can help accomplish this process. For the sample application, we have a pipeline for the frontend service and another for the backend service.
See sample pipeline yaml files below.
So whenever changes are made to the application and pushed to GitHub, a job is triggered to test, build docker images, push images to docker hub, and deployed to the AKS cluster.
Connect to the AKS cluster and check the Kubernetes services are running the latest docker images of the containerized application.
az aks get-credentials --name <<cluster-name>> --resource-group <<resourceGroup-name>>
kubectl get all -o wide